home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.19960715-19961006 / 000219_news@columbia.edu _Tue Aug 20 11:54:08 1996.msg < prev    next >
Internet Message Format  |  1996-11-03  |  3KB

  1. Return-Path: news@columbia.edu
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30]) by watsun.cc.columbia.edu (8.7.5/8.7.3) with ESMTP id LAA28080 for <kermit.misc@watsun.cc.columbia.edu>; Tue, 20 Aug 1996 11:54:08 -0400 (EDT)
  3. Received: (from news@localhost) by newsmaster.cc.columbia.edu (8.7.5/8.7.3) id LAA01689 for kermit.misc@watsun; Tue, 20 Aug 1996 11:54:07 -0400 (EDT)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: non-US keyboard: unexpected results
  8. Date: 20 Aug 1996 15:53:47 GMT
  9. Organization: Columbia University
  10. Lines: 47
  11. Message-ID: <4vcn2b$jqd@apakabar.cc.columbia.edu>
  12. References: <01bb8af4$51ef2120$c41a73c2@pitfall>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14.  
  15. In article <01bb8af4$51ef2120$c41a73c2@pitfall>,
  16. Michael Agbaglo <byteshif@cs.tu-berlin.de> wrote:
  17. : How can I use a german keyboard w/ kermit-95 ?
  18. : To use the at-sign (@) I have to press Alt-Q - and kermit executes
  19. : hangup and quit - arrrgh !
  20. We had some difficulties with non-US keyboards in the early releases
  21. of Kermit 95.  We put a great deal of work into circumventing these
  22. problems -- which are caused entirely by Windows 95 bugs (as can be
  23. verified by running the exact same software under Windows NT instead of
  24. Windows 95 and observing that your keyboard behaves as expected) --
  25. in version 1.1.5 of Kermit 95 and subsequent releases.
  26.  
  27. However, since we do not live in Europe and actually use these keyboards
  28. ourselves, some things might escape our notice.  You say that you use
  29. Alt-q to enter "commercial at sign" (@).  That is a surprise to me,
  30. because I thought Germans used Alt-Gr to enter special characters, not
  31. simply Alt by itself.  Alt-Gr is equivalent to Ctrl-Alt.  Alt-q is, as
  32. you have discovered, mapped to the Keyboard verb \Kquit, meaning "exit
  33. from Kermit 95".  Ctrl-Alt-Q (i.e. Alt-Gr Q) is mapped to nothing, and
  34. so if the German keyboard driver associates it with at-sign, it should
  35. produce at-sign.
  36.  
  37. We certainly have a quandary here, don't we?  On the one hand we have
  38. so many users who want a "hot key" to exit from Kermit 95, and on the
  39. other it seems this hot key is needed in Germany for entering an ASCII
  40. character.  Are you CERTAIN that Alt-q enters at-sign on your keyboard,
  41. and not Alt-Gr-q ?
  42.  
  43. In any case, remember we are dealing with DEFAULT mappings here.  The
  44. beauty of Kermit software is that you can change any key to do anything
  45. you want.  If you want to see what a key does, type:
  46.  
  47.   show key
  48.  
  49. at the K-95> prompt, and the press the key or key combination.  If you
  50. want to change what a key does, use SET KEY.
  51.  
  52. So if you want Alt-q to generate at-sign, just put the following
  53. command in your K95CUSTOM.INI file:
  54.  
  55.   set key \2161 @
  56.  
  57. For lots more details about German and other non-US keyboards, read the
  58. relevant sections in your BUGS.DOC file: items 6, 84, 104, 140, and 141.
  59.  
  60. - Frank